home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
powervww
/
pvinit.h
< prev
next >
Wrap
Text File
|
1998-01-05
|
2KB
|
57 lines
// ____________________________________________________
// | |
// | Project: POWER VIEW INTERFACE |
// | File: PVINIT.H |
// | Compiler: WPP386 (10.6) |
// | |
// | Subject: Startup initialization interface |
// | |
// | Author: Emil Dotchevski |
// |____________________________________________________|
//
// E-mail: zajo@geocities.com
// URL: http://www.geocities.com/SiliconValley/Bay/3577
#if !defined( NOPARAM ) || !defined( NOCONFIG )
void init_startup( int argc, char *argv[] );
#endif
#ifndef NOPARAM
void init_comlin( int argc, char *argv[] );
#endif
#ifndef NOCONFIG
void init_config( void );
#endif
void init_system( void );
void init_drivers( void );
void init_dc( void );
void init_icons( void );
void init_colors( void );
void init_application( void );
void init_desktop( void );
#if !defined( NOTOOLS ) || !defined( NOMENUS )
void init_cmdgen( void );
#endif
#ifndef NOCLOCK
void init_clock( void );
#endif
#ifdef MEMMON
void init_mem( void );
#endif
#if !defined( NOPARAM ) || !defined( NOCONFIG )
void tini_startup( void );
#endif
#ifndef NOCONFIG
void tini_config( void );
#endif
#ifndef NOPARAM
void tini_comlin( void );
#endif
void init_screen( void );
void init_editors( void );